home *** CD-ROM | disk | FTP | other *** search
/ U.F.O Finding the Truth 1 / UFO Finding the Truth 1 (Disk 2 of 2).adf / Devs / MountList < prev    next >
Text File  |  1992-01-09  |  1KB  |  49 lines

  1. /* MountList for V2.0 */
  2.  
  3. /* This is an example of a non-filing system mount using a handler written
  4.    in C.
  5. */
  6.  
  7. SPEAK:     
  8.     Handler = L:Speak-Handler
  9.     Stacksize = 6000
  10.     Priority = 5
  11.     GlobVec = -1
  12. #
  13.  
  14. /*  This is an example of an alternative type of non-filing device mount,
  15.     used to mount the non-buffered serial handler
  16. */
  17.  
  18. AUX:
  19.     Handler = L:Aux-Handler
  20.     Stacksize = 1000
  21.     Priority = 5
  22. #
  23.  
  24. /*  This is a non-filing system device */
  25.  
  26. PIPE:      
  27.     Handler = L:Queue-Handler
  28.     Stacksize = 3000
  29.     Priority = 5
  30.     GlobVec = -1
  31. #
  32.  
  33. /* This is an example of a mount list entry for using the recoverable 
  34.    ram disk.  Depending on the amount of memory you wish to devote to
  35.    it, you may want to change the HighCyl value.
  36. */
  37.  
  38. RAD:       Device = ramdrive.device
  39.            Unit   = 0
  40.            Flags  = 0
  41.            Surfaces  = 2
  42.            BlocksPerTrack = 11
  43.            Reserved = 2
  44.            Interleave = 0
  45.            LowCyl = 0  ;  HighCyl = 79
  46.            Buffers = 5
  47.            BufMemType = 1
  48. #
  49.